home *** CD-ROM | disk | FTP | other *** search
/ Gamers Delight 2 / Gamers Delight 2.iso / Aminet / game / wb / tta.lha / TicTacAMIGA / Install_TTA next >
Text File  |  1992-09-02  |  2KB  |  83 lines

  1. ; Installer-Script of TicTacAMIGA v1.5a and better
  2. ; The TTA package (the executable, the guides, the install-script and 
  3. ; the catalog) is copyright 1993-1994 by Jens Tröger
  4.  
  5. ; $VER TTA v1.5a (16.10.1994)
  6.  
  7. (COMPLETE 0)
  8.  
  9. (IF (= @language "deutsch")
  10.    (
  11.       (SET no_v37 (CAT "Es wird mindestens OS2 (v37) oder besser benötigt"))
  12.       (SET msg_0 (CAT "\nTicTacAMIGA Installer script.\n\n"
  13.                       "Hiermit können Sie TTA auf Ihrem AMIGA installieren\n\n"
  14.                       "Hinweis: lesen Sie bitte das Guide, bevor Sie TTA starten !"
  15.                       "\n\nDas TTA-Packet ist © 1993-1994 by Jens Tröger\n"
  16.                       "Alle Rechte vorbehalten."
  17.                       "\n\nNotiz: das Guide wird nicht installiert !"))
  18.       (SET msg_1 (CAT "Zeilverzeichnis auswählen..."))
  19.       (SET done (CAT "OK, das wär`s - Installation abgeschlossen"
  20.                      "\n\nViel Spaß mit TTA !"))
  21.    )
  22.    (
  23.       (SET no_v37 (CAT "You need OS2 (v37) or better to run"))
  24.       (SET msg_0 (CAT "\nTTA Installer script.\n\n"
  25.                       "This will install TTA on your AMIGA\n\n"
  26.                       "Indication: read the guide before you run TTA !"
  27.                       "\n\nThe TTA-package is © 1993-1994 by Jens Tröger\n"
  28.                       "All rights reserved."
  29.                       "\n\nNote: the guide won`t be installed !"))
  30.       (SET msg_1 (CAT "Select destination drawer..."))
  31.       (SET done (CAT "OK, that`s all - installation complete"
  32.                      "\n\nHave fun with TTA !"))
  33.    )
  34. )
  35.  
  36. (IF (< (/ (GETVERSION) 65536) 37)
  37.    (
  38.       (ABORT no_v37)
  39.    )
  40. )
  41.  
  42. (MESSAGE msg_0)
  43.  
  44. (SET destdir
  45.    (ASKDIR
  46.       (PROMPT "\n" msg_1)
  47.       (HELP @askdir-help)
  48.       (DEFAULT "SYS:GAMES/")
  49.    )
  50. )
  51.  
  52. (COPYFILES
  53.    (SOURCE "TicTacAMIGA")
  54.    (DEST destdir)
  55.    (INFOS)
  56. )
  57.  
  58. (COMPLETE 33)
  59.  
  60. (IF (= @language "deutsch")
  61.    (
  62.       (COMPLETE 66)
  63.       (COPYFILES
  64.          (SOURCE "catalogs/deutsch/tictacamiga.catalog")
  65.          (DEST "locale:catalogs/deutsch/")
  66.          (INFOS)
  67.       )
  68.    )
  69.    (
  70.       (COMPLETE 66)
  71.    )
  72. )
  73.  
  74. (COPYFILES
  75.    (SOURCE "TicTacAMIGA.config")
  76.    (DEST "ENVARC:")
  77.    (INFOS)
  78. )
  79.  
  80. (COMPLETE 100)
  81.  
  82. (EXIT done)
  83.